/*
* Taiwan Company Website - Combined CSS
* Includes: animate-minimal.css + main-minimal.css + responsive-minimal.css
* Optimized for performance and only includes actually used styles
*/


/* ==========================================================================
   ANIMATE CSS - Minimal Version
   ========================================================================== */

@charset "UTF-8";
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


/* fadeIn animation */

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}


/* fadeInDown animation */

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}


/* fadeInUp animation */

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}


/* ==========================================================================
   MAIN CSS - Minimal Version
   ========================================================================== */

@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

p {
    font-size: 14px;
    line-height: 26px;
}

a:hover,
a:focus {
    color: #61D2B4;
    text-decoration: none;
    outline: none;
}

a {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

a:not([href]):not([tabindex]) {
    color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: #61D2B4;
}

.section {
    padding: 80px 0;
}

.section-header {
    color: #fff;
    margin-bottom: 40px;
}

.section-header .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header .section-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
}

.section-header .lines {
    background: #61D2B4;
    width: 60px;
    height: 0px;
    margin: 20px auto;
    border-radius: 5px;
}

.btn {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 6px;
    border: 2px solid transparent;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.btn:active {
    box-shadow: none;
    outline: none;
}

.btn-common {
    border: 1px solid #61D2B4;
    background: #61D2B4;
    position: relative;
    color: #fff;
    z-index: 1;
    border-radius: 30px;
    margin: 0px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 11px 40px;
    font-weight: 400;
}

.btn-common:hover {
    color: #fff;
    background: #33b391;
    border-color: #33b391;
}

.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 15px;
}

#hero-area {
    /* background: url(../images/hero-area.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  height: 100vh;
  padding: 0;
  position: relative; */
    color: #fff;
    overflow: hidden;
    position: relative;
    background: url(../images/hero-area.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    margin-top: -20px;
}

#hero-area .contents {
    padding-top: 40vh;
}

#hero-area .contents h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

#hero-area .contents p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.5px;
}


/* #hero-area .contents .form-control {
    border: 1px solid #fff;
    border-radius: 0px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 6px 14px;
    width: 100%;
} */

#hero-area .contents .form-control:focus {
    border-color: #61D2B4;
    box-shadow: none;
}

#hero-area .contents .form-control::-webkit-input-placeholder {
    color: #fff5;
}

#hero-area .contents .form-control:-moz-placeholder {
    color: #fff5;
}

#hero-area .contents .form-control::-moz-placeholder {
    color: #fff5;
}

#hero-area .contents .form-control:-ms-input-placeholder {
    color: #fff5;
}

.navbar-header {
    width: 100%;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-right: 0;
}

.navbar-toggler {
    border-color: #61D2B4;
    margin: 15px;
    float: right;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    /*outline: 5px auto #61D2B4;*/
    outline: unset;
}

.navbar-toggler .menu-icon {
    width: 20px;
    height: 20px;
    fill: #61D2B4;
}

.top-nav-collapse {
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
}

.top-nav-collapse .navbar-brand {
    color: #333;
}

.top-nav-collapse .navbar-nav .nav-link {
    color: #333 !important;
}


/* .top-nav-collapse .navbar-nav .nav-link:hover {
    color: #61D2B4 !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
    color: #61D2B4 !important;
} */

.top-nav-collapse {
    background: transparent;
    border: 0;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.top-nav-collapse .navbar-brand {
    color: #fff;
    padding: 0 !important;
}

.top-nav-collapse .navbar-nav .nav-link {
    color: #fff;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 5px;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* .top-nav-collapse  .navbar-nav .nav-link:hover {
    color: #61D2B4 !important;
}

.top-nav-collapse  .navbar-nav .nav-link.active {
    color: #61D2B4 !important;
} */

.scrolling-navbar {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.fixed-top.menu-bg {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
}

footer {
    background: #333;
    color: #fff;
    padding: 30px 0 0;
    font-size: 14px;
}

footer .footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

footer .footer-links li {
    display: inline-block;
    margin: 0 5px;
}

footer .footer-links li a {
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #555;
    padding-right: 30px;
}

footer .footer-links li:last-child a {
    border-right: none;
}

footer .footer-links li a:hover {
    color: #61D2B4;
}

footer .copyright {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    margin-top: 20px;
}

footer .copyright a {
    color: #61D2B4;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.lead {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.contents {
    z-index: 999;
    position: relative;
}

.table {
    color: #333;
    border: 1px solid #dddddd;
}

.table th {
    text-align: center;
}

.table-striped>thead>tr>th,
.table-striped>tbody>tr>th,
.table-striped>tfoot>tr>th,
.table-striped>thead>tr>td,
.table-striped>tbody>tr>td,
.table-striped>tfoot>tr>td {
    border: 1px solid #dddddd;
}

.table-responsive {
    border-radius: 4px;
}

.modal-content {
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 15px;
    text-align: right;
}


/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/

.resume .resume-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #050d18;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #1f5297;
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #050d18;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    background: #e4edf9;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #1f5297;
}


/* ==========================================================================
   RESPONSIVE CSS - Minimal Version
   ========================================================================== */

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
    }
    .top-nav-collapse .navbar-nav .nav-link {
        color: #000;
    }
}


/* Tablets (768px - 991px) */
/* 
@media (min-width: 768px) and (max-width: 991px) {
    #hero-area .contents h1 {
        font-size: 40px;
    }
    .section-header .section-title {
        font-size: 32px;
    }
    .btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    .navbar-brand {
        font-size: 20px;
    }
    .footer-links li a {
        margin-right: 8px;
    }
} */


/* Mobile (max-width: 767px) */

@media (max-width: 991px) {
    .section {
        padding: 40px 0;
    }
    .section-header .section-title {
        font-size: 24px;
    }
    #hero-area .contents {
        padding: 120px 0 60px;
    }
    #hero-area .contents h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero-area .contents p {
        font-size: 16px;
        line-height: 24px;
    }
    .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    .navbar-brand {
        font-size: 18px;
    }
    /* .table-responsive {
        font-size: 12px;
    } */
    .footer-links li a {
        margin-right: 5px;
        /* font-size: 12px; */
    }
    .copyright {
        text-align: center;
        margin-top: 10px;
    }
    .modal-dialog {
        margin: 10px;
    }
    .modal-content {
        margin: 0 10px;
    }
}